home *** CD-ROM | disk | FTP | other *** search
/ Way Cool Games 2 / Quantum Axcess Way Cool Games Too.iso / waycool2.mst < prev   
Text File  |  1994-08-01  |  9KB  |  284 lines

  1. '**************************************************************************
  2. '*                      Way Cool Too Installation Script
  3. '**************************************************************************
  4.  
  5. '$DEFINE DEBUG  ''Define for script development/debugging
  6.  
  7. '$INCLUDE 'setupapi.inc'
  8. '$INCLUDE 'msdetect.inc'
  9.  
  10. ''Dialog ID's
  11. CONST WELCOME       = 100
  12. CONST ASKQUIT       = 200
  13. CONST DESTPATH      = 300
  14. CONST EXITFAILURE   = 400
  15. CONST EXITQUIT      = 600
  16. CONST EXITSUCCESS   = 700
  17. CONST OPTIONS       = 800
  18. CONST APPHELP       = 900
  19. CONST BADPATH       = 6400
  20. CONST TOOBIG        = 6300
  21.  
  22. ''Bitmap ID
  23. CONST LOGO = 1
  24.  
  25. GLOBAL DEST$        ''Default destination directory.
  26. GLOBAL OPTCUR$      ''Option selection from option dialog.
  27.  
  28. DECLARE SUB Install
  29. DECLARE FUNCTION MakePath (szDir$, szFile$) AS STRING
  30. Declare Function ShowWindow Lib "User" (hWnd%, nCmdShow%) As Integer
  31.  
  32.  
  33.  
  34. INIT:
  35.      i% = ShowWindow(HwndFrame(), 3)
  36.     CUIDLL$ = "mscuistf.dll"            ''Custom user interface dll
  37.     HELPPROC$ = "FHelpDlgProc"          ''Help dialog procedure
  38.  
  39.     SetBitmap CUIDLL$, LOGO
  40.     SetTitle "WayCool Too! Games for Windows - Setup"
  41.  
  42.     szInf$ = GetSymbolValue("STF_SRCINFPATH")
  43.     IF szInf$ = "" THEN
  44.     szInf$ = GetSymbolValue("STF_CWDDIR") + "WayCool2.INF"
  45.     END IF
  46.     ReadInfFile szInf$
  47.  
  48.     OPTCUR$ = "1"
  49.     DEST$ = "C:\WAYCOOL2"
  50.  
  51. '$IFDEF DEBUG
  52.     i% = SetSizeCheckMode(scmOnIgnore)    '' could use scmOff; def = scmOnFatal
  53.     WinDrive$ = MID$(GetWindowsDir, 1, 1)
  54.     IF IsDriveValid(WinDrive$) = 0 THEN
  55.     i% = DoMsgBox("Windows drive ('"+WinDrive$+"') is not a valid drive.", "DEBUG", MB_TASKMODAL+MB_ICONHAND+MB_OK)
  56.     GOTO QUIT
  57.     END IF
  58. '$ENDIF ''DEBUG
  59.  
  60. i% = ShowWindow(HwndFrame(), 3)
  61.  
  62. WELCOME:
  63.     sz$ = UIStartDlg(CUIDLL$, WELCOME, "FInfoDlgProc", APPHELP, HELPPROC$)
  64.     IF sz$ = "CONTINUE" THEN
  65.     UIPop 1
  66.     ELSE
  67.     GOSUB ASKQUIT
  68.     GOTO WELCOME
  69.     END IF
  70.  
  71.  
  72.  
  73. GETPATH:
  74.     SetSymbolValue "EditTextIn", DEST$
  75.     SetSymbolValue "EditFocus", "END"
  76. GETPATHL1:
  77.     sz$ = UIStartDlg(CUIDLL$, DESTPATH, "FEditDlgProc", APPHELP, HELPPROC$)
  78.     DEST$ = GetSymbolValue("EditTextOut")
  79.  
  80.     IF sz$ = "CONTINUE" THEN
  81.     IF IsDirWritable(DEST$) = 0 THEN
  82.         GOSUB BADPATH
  83.         GOTO GETPATHL1
  84.     END IF
  85.     UIPop 1
  86.     ELSEIF sz$ = "REACTIVATE" THEN
  87.     GOTO GETPATHL1
  88.     ELSEIF sz$ = "BACK" THEN
  89.     UIPop 1
  90.     GOTO WELCOME
  91.     ELSE
  92.     GOSUB ASKQUIT
  93.     GOTO GETPATH
  94.     END IF
  95.  
  96.                
  97.     SrcDir$ = MakePath(GetSymbolValue("STF_SRCDIR"),"waycool2")
  98.     CreateDir DEST$, cmoNone
  99.  
  100.     OpenLogFile MakePath(DEST$, "SETUP.TXT"), 0
  101.     WriteToLogFile ""
  102.     WriteToLogFile "  User chose as destination directory: '" + DEST$ + "'"
  103.     WriteToLogFile ""
  104.     WriteToLogFile "May have had to create the directory: " + DEST$
  105.     WriteToLogFile ""
  106.     SetRestartDir DEST$
  107.     AddSectionFilesToCopyList "Files", SrcDir$, DEST$
  108.     AddSectionFilesToCopyList "Help Files",SrcDir$, GetWindowsDir()
  109.     SrcDir$ = MakePath(GetSymbolValue("STF_SRCDIR"),"waycool2\system")
  110.     AddSectionFilesToCopyList "System Files",SrcDir$, GetWindowsSysDir()
  111.     if DoesFileExist(MakePath(GetWindowsDir, "threed.vbx"),0) then
  112.     AddSectionFilesToCopyList "Vital vbxs", SrcDir$, GetWindowsDir()
  113.     Endif 
  114.     if DoesFileExist(MakePath(GetWindowsDir, "vbrun300.dll"),0) then
  115.     AddSectionFilesToCopyList "Vital dlls", SrcDir$, GetWindowsDir()
  116.     Endif 
  117.     AddSectionFilesToCopyList "Vital vbxs",SrcDir$, GetWindowsSysDir()
  118.     AddSectionFilesToCopyList "Vital dlls",SrcDir$, GetWindowsSysDir()
  119.     req& = GetCopyListCost(a$,b$,c$)
  120.     if req& = 0 THEN
  121.     CopyFilesInCopyList
  122.     else
  123.     sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  124.     UIPop 1
  125.     dlg% = EXITFAILURE
  126.     GOTO QUITL1
  127.     Endif
  128.  
  129.     ini$ = MakePath(GetWindowsDir, "WAYCOOL2.INI")
  130.     CreateIniKeyValue ini$, "Start", "File", MakePath(DEST$,"WAYCOOL2.LST") , cmoNone
  131.     CreateIniKeyValue ini$, "Start",  "Path", DEST$  , cmoNone
  132.     CreateIniKeyValue ini$, "Start",  "GamePath", MakePath(MID$(SrcDir$, 1, 2),"GAMES") , cmoNone
  133.  
  134.     CreateProgmanGroup "Way Cool Windows Games", "", cmoNone
  135.     ShowProgmanGroup  "Way Cool Windows Games", 1, cmoNone
  136.     CreateProgmanItem "Way Cool Windows Games", "WayCool Too!", MakePath(DEST$,"WAYCOOL2.EXE"), "", cmoOverwrite
  137.     CreateProgmanItem "Way Cool Windows Games", "Readme Too", "notepad.exe "+MakePath(DEST$,"README.TXT"), "", cmoOverwrite
  138.  
  139.     AddDos5Help "WAYCOOL2", "WayCool Too! games for Windows"+chr$(10)+"Another Way Cool CD-ROM by Quantum Axcess.", cmoNone
  140.     CloseLogFile
  141.  
  142.  
  143.     IF RestartListEmpty() = 0 THEN
  144.     dlg% = DoMsgBox("System files in use.  Setup must exist Windows, copy these files, and restart Windows.","Problem",0)
  145.     dlg% = ExitExecRestart
  146.     ENDIF    
  147.  
  148.  
  149.  
  150. QUIT:
  151.     ON ERROR GOTO ERRQUIT
  152.  
  153.     IF ERR = 0 THEN
  154.     dlg% = EXITSUCCESS
  155.     ELSEIF ERR = STFQUIT THEN
  156.     dlg% = EXITQUIT
  157.     ELSE
  158.     dlg% = EXITFAILURE
  159.     END IF
  160. QUITL1:
  161.     sz$ = UIStartDlg(CUIDLL$, dlg%, "FInfo0DlgProc", 0, "")
  162.     IF sz$ = "REACTIVATE" THEN
  163.     GOTO QUITL1
  164.     END IF
  165.     UIPop 1
  166.  
  167.     END
  168.  
  169. ERRQUIT:
  170.     i% = DoMsgBox("CD-ROM disc is damaged please call Quantum Axcess tecnical support at (614) 228-3903!", "Setup Message", MB_OK+MB_TASKMODAL+MB_ICONHAND)
  171.     END
  172.  
  173.  
  174.  
  175. BADPATH:
  176.     sz$ = UIStartDlg(CUIDLL$, BADPATH, "FInfo0DlgProc", 0, "")
  177.     IF sz$ = "REACTIVATE" THEN
  178.     GOTO BADPATH
  179.     END IF
  180.     UIPop 1
  181.     RETURN
  182.  
  183.  
  184.  
  185. ASKQUIT:
  186.     sz$ = UIStartDlg(CUIDLL$, ASKQUIT, "FQuitDlgProc", 0, "")
  187.  
  188.     IF sz$ = "EXIT" THEN
  189.     UIPopAll
  190.     ERROR STFQUIT
  191.     ELSEIF sz$ = "REACTIVATE" THEN
  192.     GOTO ASKQUIT
  193.     ELSE
  194.     UIPop 1
  195.     END IF
  196.     RETURN
  197.  
  198.  
  199.  
  200. '**
  201. '** Purpose:
  202. '**     Builds the copy list and performs all installation operations.
  203. '** Arguments:
  204. '**     none.
  205. '** Returns:
  206. '**     none.
  207. '*************************************************************************
  208. 'SUB Install STATIC
  209. '
  210. '    SrcDir$ = MakePath(GetSymbolValue("STF_SRCDIR"),"install")
  211. '    CreateDir DEST$, cmoNone
  212. '        i%=DoMsgBox(SrcDir$,"Source",0)
  213. '        i%=DoMsgBox(DEST$,"Destination",0)
  214. '
  215. '    OpenLogFile MakePath(DEST$, "SETUP.TXT"), 0
  216. '    WriteToLogFile ""
  217. '    WriteToLogFile "  User chose as destination directory: '" + DEST$ + "'"
  218. '    WriteToLogFile ""
  219. '    WriteToLogFile "May have had to create the directory: " + DEST$
  220. '    WriteToLogFile ""
  221. '    SetRestartDir DEST$
  222. '    AddSectionFilesToCopyList "Files", SrcDir$, DEST$
  223. '    AddSectionFilesToCopyList "System Files",SrcDir$, GetWindowsSysDir()
  224. '    if DoesFileExist(MakePath(GetWindowsDir, "threed.vbx"),0) then
  225. '        AddSectionFilesToCopyList "Vital vbxs", SrcDir$, GetWindowsDir()
  226. '    Endif 
  227. '    if DoesFileExist(MakePath(GetWindowsDir, "vbrun300.dll"),0) then
  228. '        AddSectionFilesToCopyList "Vital dlls", SrcDir$, GetWindowsDir()
  229. '    Endif 
  230. '    AddSectionFilesToCopyList "Vital vbxs",SrcDir$, GetWindowsSysDir()
  231. '    AddSectionFilesToCopyList "Vital dlls",SrcDir$, GetWindowsSysDir()
  232. '    if GetCopyListCost(a$,b$,c$) = 0 then  
  233. '        CopyFilesInCopyList
  234. '    else
  235. '        sz$ = UIStartDlg(CUIDLL$, TOOBIG, "FInfo0DlgProc", 0, "")
  236. '        UIPop 1
  237. '        GOTO GETPATH
  238. '    Endif
  239. '
  240. '    ini$ = MakePath(GetWindowsDir, "WAYCOOL2.INI")
  241. '    CreateIniKeyValue ini$, "Start", "File", MakePath(DEST$,"WAYCOOL2.LST") , cmoNone
  242. '    CreateIniKeyValue ini$, "Start",  "Path", DEST$  , cmoNone
  243. '    CreateIniKeyValue ini$, "Start",  "GamePath", MakePath(MID$(SrcDir$, 1, 2),"GAMES") , cmoNone
  244. '
  245. '    CreateProgmanGroup "Way Cool Windows Games", "", cmoNone
  246. '    ShowProgmanGroup  "Way Cool Windows Games", 1, cmoNone
  247. '    CreateProgmanItem "Way Cool Windows Games", "WayCool2", MakePath(DEST$,"WAYCOOL2.EXE"), "", cmoOverwrite
  248. '    CreateProgmanItem "Way Cool Windows Games", "Readme", "notepad.exe "+MakePath(DEST$,"README.TXT"), "", cmoOverwrite
  249. '
  250. '    AddDos5Help "WAYCOOL2", "WayCool games for Windows"+chr$(10)+"Another Way Cool CD-ROM by Quantum Axcess.", cmoNone
  251. '    CloseLogFile
  252. '
  253. '
  254. '    IF RestartListEmpty() = 0 THEN
  255. '        dlg% = DoMsgBox("System files in use.  Setup must exist Windows, copy these files, and restart Windows.","Problem",0)
  256. '        dlg% = ExitExecRestart
  257. '    ENDIF    
  258. 'END SUB
  259.  
  260.  
  261.  
  262. '**
  263. '** Purpose:
  264. '**     Appends a file name to the end of a directory path,
  265. '**     inserting a backslash character as needed.
  266. '** Arguments:
  267. '**     szDir$  - full directory path (with optional ending "\")
  268. '**     szFile$ - filename to append to directory
  269. '** Returns:
  270. '**     Resulting fully qualified path name.
  271. '*************************************************************************
  272. FUNCTION MakePath (szDir$, szFile$) STATIC AS STRING
  273.     IF szDir$ = "" THEN
  274.     MakePath = szFile$
  275.     ELSEIF szFile$ = "" THEN
  276.     MakePath = szDir$
  277.     ELSEIF MID$(szDir$, LEN(szDir$), 1) = "\" THEN
  278.     MakePath = szDir$ + szFile$
  279.     ELSE
  280.     MakePath = szDir$ + "\" + szFile$
  281.     END IF
  282. END FUNCTION
  283.  
  284.